home *** CD-ROM | disk | FTP | other *** search
/ PC Pro 2000 February / DPPCPRO0200.ISO / ps10.dxr / Scripts_25_Free BEh.ls < prev    next >
Encoding:
Text File  |  1999-10-26  |  448 b   |  20 lines

  1. property rolloverName
  2.  
  3. on mouseEnter me
  4.   set the member of sprite the currentSpriteNum to member(rolloverName & " roll")
  5. end
  6.  
  7. on mouseLeave me
  8.   set the member of sprite the currentSpriteNum to member(rolloverName)
  9. end
  10.  
  11. on mouseUp me
  12.   go(rolloverName)
  13. end
  14.  
  15. on getPropertyDescriptionList
  16.   description = [:]
  17.   addProp(description, #rolloverName, [#default: EMPTY, #format: #string, #comment: "Rollover/Destination Name"])
  18.   return description
  19. end
  20.